home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / solaris251_103640.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  57 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12657);
  10.  script_version ("$Revision: 1.8 $");
  11.  script_bugtraq_id(5161, 5356, 5531, 6309, 6484);
  12.  name["english"] = "Solaris 2.5.1 (sparc) : 103640-42";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host is missing Sun Security Patch number 103640-42
  18. ( kernel update patch).
  19.  
  20. You should install this patch for your system to be up-to-date.
  21.  
  22. Solution : http://sunsolve.sun.com/search/document.do?assetkey=1-21-103640-42-1
  23. Risk factor : High";
  24.  
  25.  
  26.  script_description(english:desc["english"]);
  27.  
  28.  summary["english"] = "Check for patch 103640-42"; 
  29.  script_summary(english:summary["english"]);
  30.  
  31.  script_category(ACT_GATHER_INFO);
  32.  
  33.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  34.  family["english"] = "Solaris Local Security Checks";
  35.  script_family(english:family["english"]);
  36.  
  37.  script_dependencies("ssh_get_info.nasl");
  38.  script_require_keys("Host/Solaris/showrev");
  39.  exit(0);
  40. }
  41.  
  42.  
  43.  
  44. include("solaris.inc");
  45.  
  46. e =  solaris_check_patch(release:"5.5.1", arch:"sparc", patch:"103640-42", obsoleted_by:"", package:"SUNWarc SUNWcar.c SUNWcar.d SUNWcar.m SUNWcar.u SUNWcar.u1 SUNWcsr SUNWcsu SUNWdrr.u1 SUNWfns SUNWhea SUNWkvm.c SUNWkvm.d SUNWkvm.m SUNWkvm.u SUNWkvm.u1 SUNWnisu SUNWscpu SUNWsra SUNWsutl");
  47.  
  48. if ( e < 0 ) security_hole(0);
  49. else if ( e > 0 )
  50. {
  51.     set_kb_item(name:"BID-5161", value:TRUE);
  52.     set_kb_item(name:"BID-5356", value:TRUE);
  53.     set_kb_item(name:"BID-5531", value:TRUE);
  54.     set_kb_item(name:"BID-6309", value:TRUE);
  55.     set_kb_item(name:"BID-6484", value:TRUE);
  56. }
  57.